home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / GIFLIB12.ARJ / GIFCLIP.DOC < prev    next >
Text File  |  1991-05-13  |  1KB  |  41 lines

  1.             GifClip
  2.             -------
  3.  
  4. Program to clip images in GIF files. Only one image in GIF file can be modified
  5. at a time. Neither image relative position to screen, nor screen sizes are
  6. modified (use GifPos for that).
  7.  
  8. Usage:
  9. ------
  10.  
  11. Usage: GifClip [-q] [-i Xmin Ymin Xmax Ymax] [-n n Xmin Ymin Xmax Ymax] [-h]
  12.                                 GifFile
  13.  
  14.   If no GifFile is given, GifClip will try to read stdin for GIF file.
  15.  
  16. Memory required:
  17. ----------------
  18.  
  19. Line.
  20.  
  21.  
  22. Options:
  23. --------
  24.  
  25. 1. [-q] : quite mode. Default off on MSDOS, on on unix. Controls printout
  26.    of running scan lines. Use -q- to turn off.
  27. 2. [-i Xmin Ymin Xmax Ymax] : Clip first image to the dimensions as specified
  28.    by the 4 coordinates (Xmin Ymin Xmax Ymax) of a box clipping region.
  29.      For example: '-i 11 22 33 44' will crop the box from top left [11,22]
  30.    to bottom right [33,44] out of the first image.
  31.      If the first parameter is bigger than third one (Xmin > Xmax) - they are
  32.    swapped. Same for Y.
  33.      Dimensions of cropped image must be confined to original image width and
  34.    height. Note the clipped image include both min & max boundry, and image
  35.    of width W can have coordinates 0 to W-1 (zero based).
  36.      Only one of -i or -n can be specified.
  37. 3. [-n n Xmin Ymin Xmax Ymax] : same as -i above but for the nth image:
  38.    '-n 1 11 22 33 44' is exactly the same as the example in -i. Only one of
  39.    -i or -n can be specified.
  40. 4. [-h] : print one command line help, similar to Usage above.
  41.